Do following:

# vim /etc/rsyslog.conf

In rsyslog.conf bottom line:

*.* @192.168.60.21:5143

Restart service:

# systemctl restart rsyslog
  1. key-value database
    • Redis and memcache
    • extremely fast
    • in memory
    • limited space
    • use case
      • caching
      • pub/sub – chat or messege queue
  1. wide column database
    • hbase and cassandra
    • key and wide columns data for more info
    • decentralize and can be scale
    • use case
      • time-series
      • historical records
      • high write, low read
  1. document database
    • mongodb
    • collection -> document -> key-value (can be stack into several layers)
    • schema-less
    • use case
      • app
      • games
      • iot
  1. relational database
    • mysql, postgres
    • SQL
    • primary key, foreign key
    • schema required
  1. graph database
    • neo4j
    • node – relationship
    • cypher
    • use lot of join -> faster performance than SQL
    • use case
      • graph
      • knowledge graph
      • recommendation engine
  1. full-text search database
    • elastic, solr, lucene, meili
    • index – text
    • inverted index to link term(for search) <-> index of documents
    • use case
      • search engine
  1. multi-model database
    • fauna
    • combine document database and graph database

Issue this command at teminal:

% ssh-copy-id -i ~/.ssh/id_rsa.pub <user>@<host>

As a administrator privilege:

#chmod u+s /bin/ping

This should fix the problem.

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!